home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-01-18 | 806 b | 29 lines |
- #This makefile is set up for Turbo C v2.0 and Turbo make utility
-
- #the following means small model, maximum optimizing, define NDEBUG
- #DFLG=-DNDEBUG
- DFLG=
- CFLAGS =-ms -G -O -r
- INCLUDE=D:\TC\INCLUDE
- LIB =D:\TC\LIB
- WILD=$(LIB)\WILDARGS.OBJ
- #WILD=
-
- #use the following for linking non debug version
- #file set up for library for real mode operation
- #you will have to modify for your compiler
-
- compress.exe : compress.obj compusi.obj compapi.obj
- tcc $(CFLAGS) -L$(LIB) compress.obj compusi.obj compapi.obj $(WILD)
-
-
- compress.obj: compress.c compress.h
- tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compress.c
-
- compusi.obj: compusi.c compress.h
- tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compusi.c
-
- compapi.obj: compapi.c compress.h
- tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compapi.c
-
-